WriteItemData(Byte[],Int32,Int32) Method
In This Topic
Writes a sequence of bytes to the ZipWriter object's stream and advances the position within the stream by the number of bytes written.
Syntax
'Declaration
Public Overloads Sub WriteItemData( _
ByVal () As Byte, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ZipWriter
Dim buffer() As Byte
Dim offset As Integer
Dim count As Integer
instance.WriteItemData(buffer, offset, count)
public void WriteItemData(
byte[] ,
int ,
int
)
Parameters
- buffer
- An array of bytes. This method copies count bytes from buffer to the ZipWriter object's stream.
- offset
- The zero-based byte offset in buffer at which to begin copying bytes to the ZipWriter object's stream.
- count
- The number of bytes to be written to the ZipWriter object's stream.
Supported Frameworks
countbuffer
See Also